home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / bin / pf2afm < prev    next >
Encoding:
Text File  |  2012-12-27  |  541 b   |  18 lines

  1. #!/bin/sh
  2. # $Id: pf2afm 8107 2007-07-05 19:04:29Z till $
  3. # Make an AFM file from PFB / PFA and (optionally) PFM files.  Usage:
  4. #    pf2afm fontfilename
  5. # Output goes to fontfilename.afm, which must not already exist.
  6. # See pf2afm.ps for more details.
  7.  
  8. # This definition is changed on install to match the
  9. # executable name set in the makefile
  10. GS_EXECUTABLE=gs
  11. gs="`dirname $0`/$GS_EXECUTABLE"
  12. if test ! -x "$gs"; then
  13.     gs="$GS_EXECUTABLE"
  14. fi
  15. GS_EXECUTABLE="$gs"
  16.  
  17. exec "$GS_EXECUTABLE" -q -dNODISPLAY -P- -dSAFER -dDELAYSAFER  -- pf2afm.ps "$@"
  18.